home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-03-10 | 1.3 KB | 63 lines | [TEXT/MPS ] |
- #//////////////////////////////////////////////////////////////////////////
- #//
- #// FILE NAME
- #// pascal.make
- #//
- #// AUTHOR
- #// Scott Haney
- #//
- #// CREATED
- #// May 30, 1994
- #//
- #// DESCRIPTION
- #// Controls Macintosh builds of the PASCAL test program for PCCTS.
- #//
- #//////////////////////////////////////////////////////////////////////////
-
- ObjDir = :Macintosh:
- SymDir = :::support:sym:
- SymObjDir = :::support:sym:Macintosh:
-
- COptions = -mc68020 -model far -warnings off -d MPW -d __STDC__=1 ∂
- -i {ObjDir} -i :::h
- LinkOptions = -d -c 'MPS ' -t MPST -mf -model far
- AntlrOptions = -fl pscan.dlg -gh
- DlgOptions = -C2
-
- GrammarFiles = ∂
- pascal.g
-
- Objects = ∂
- {ObjDir}pscan.c.o ∂
- {ObjDir}pascal.c.o ∂
- {ObjDir}err.c.o ∂
- {ObjDir}pmain.c.o ∂
- {SymObjDir}sym.c.o ∂
- "{CLibraries}"StdCLib.o ∂
- "{Libraries}"Stubs.o ∂
- "{Libraries}"Runtime.o ∂
- "{Libraries}"Interface.o
-
- {ObjDir}pscan.dlg ƒ {GrammarFiles}
- antlr -o {ObjDir} {AntlrOptions} {GrammarFiles}
-
- {ObjDir}pscan.c ƒ {ObjDir}pscan.dlg
- dlg -o {ObjDir} {DlgOptions} {ObjDir}pscan.dlg pscan.c
-
- {ObjDir}pascal.c ƒ {ObjDir}pscan.dlg
-
- {ObjDir}err.c ƒ {GrammarFiles}
-
- {ObjDir}err.c.o ƒ {ObjDir}err.c
-
- {ObjDir}pmain.c.o ƒ pmain.c
-
- {SymObjDir}sym.c.o ƒ {SymDir}sym.c
-
- {SymObjDir} ƒ {SymDir}
- {ObjDir} ƒ :
- {ObjDir} ƒ {ObjDir}
-
- pascal ƒƒ {Objects}
- Link {LinkOptions} -o pascal {Objects}
-